home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / PressedFilter.java < prev    next >
Text File  |  1998-06-30  |  2KB  |  55 lines

  1. /*
  2.  * @(#)PressedFilter.java    1.2 98/01/30
  3.  *
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  *
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.mac;
  22.  
  23. import java.awt.image.*;
  24. import java.awt.*;
  25.  
  26. /**
  27.  * @version @(#)PressedFilter.java    1.0 1/25/98
  28.  * @author Symantec
  29.  */
  30.  
  31. public class PressedFilter extends RGBImageFilter
  32. {
  33.     /**
  34.      * Creates a pressed (darker) icon image
  35.      */
  36.     public static Image createPressedImage (Image i) {
  37.     PressedFilter filter = new PressedFilter();
  38.     ImageProducer prod = new FilteredImageSource(i.getSource(), filter);
  39.     Image pressedImage = Toolkit.getDefaultToolkit().createImage(prod);
  40.     return pressedImage;
  41.     }
  42.     
  43.     public PressedFilter() {
  44.         canFilterIndexColorModel = true;
  45.     }
  46.     
  47.     public int filterRGB(int x, int y, int rgb) {
  48.     int red = (int) (((rgb >> 16) & 0xFF) * 0.7f);
  49.     int green = (int) (((rgb >> 8) & 0xFF) * 0.7f);
  50.     int blue = (int) ((rgb & 0xFF) * 0.7f);
  51.         return (rgb & 0xff000000) | (red << 16) | (green << 8) | blue;
  52.     }
  53. }
  54.  
  55.